home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #6 / CD 6 (Black) - 2001.iso / K-CS.dcr / 00138_HiliteDown, Up--Next.ls < prev    next >
Encoding:
Text File  |  2001-02-20  |  774 b   |  28 lines

  1. on new me
  2.   set the visible of sprite the currentSpriteNum to 1
  3.   set the visible of sprite (the currentSpriteNum + 1) to 0
  4.   set the visible of sprite (the currentSpriteNum + 2) to 0
  5.   set the visible of sprite (the currentSpriteNum + 3) to 0
  6. end
  7.  
  8. on mouseEnter me
  9.   set the visible of sprite (the currentSpriteNum + 1) to 1
  10.   set the visible of sprite (the currentSpriteNum + 2) to 1
  11. end
  12.  
  13. on mouseLeave me
  14.   set the visible of sprite (the currentSpriteNum + 1) to 0
  15.   set the visible of sprite (the currentSpriteNum + 2) to 0
  16.   set the visible of sprite (the currentSpriteNum + 3) to 0
  17. end
  18.  
  19. on mouseDown
  20.   set the visible of sprite (the currentSpriteNum + 3) to 1
  21.   updateStage()
  22. end
  23.  
  24. on mouseUp
  25.   set the visible of sprite (the currentSpriteNum + 3) to 0
  26.   go(#next)
  27. end
  28.